home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Pascal Super Library
/
Pascal Super Library (CW International)(1997).bin
/
BBS_UTL
/
FIDO_MSG
/
MSG_DEMO.PAS
< prev
next >
Wrap
Pascal/Delphi Source File
|
1995-08-01
|
864b
|
34 lines
USES Dos,Msg;
Const
Dest: TNodeRec = (Zone: 115;
Net: 9999;
Node: 9999;
Point: 0;
Domain: 'PascalNet'
);
Org: TNodeRec = (Zone: 115;
Net: 4401;
Node: 1;
Point: 0;
Domain: 'PascalNet'
);
NetDir: PathStr = 'D:\FD\NETMAIL';
begin
if CreateMsg(NetDir,Dest,Org,
'Fred Bloggs',
'Mark Cole',
'A Test',
HoldMask + LocalMask) THEN
begin
WriteToMsg('Hello Fred, this is a test message!'#13);
WriteToMsg(#13#10);
WriteToMsg('Best Wishes, Mark'#13#10#13#10);
WriteToMsg('---'#13);
CloseMsg;
end;
end.